home *** CD-ROM | disk | FTP | other *** search
/ Reverse Code Engineering RCE CD +sandman 2000 / ReverseCodeEngineeringRceCdsandman2000.iso / RCE / Library / Manuels & Misc / Assembly / AOA.ZIP / CH03 / SIMX86 / SIMX86.~DP < prev    next >
Encoding:
Text File  |  1996-01-21  |  336 b   |  17 lines

  1. program Simx86;
  2.  
  3. uses
  4.   Forms,
  5.   Simx86p in 'SIMX86P.PAS' {SIMx86Form},
  6.   Patterns in 'PATTERNS.PAS',
  7.   Getinput in 'GETINPUT.PAS' {InputForm};
  8.  
  9. {$R *.RES}
  10.  
  11. begin
  12.   Application.Title := 'SIMx86';
  13.   Application.CreateForm(TSIMx86Form, SIMx86Form);
  14.   Application.CreateForm(TInputForm, InputForm);
  15.   Application.Run;
  16. end.
  17.